home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscDragViews / MiscViews.subproj / MiscDragView-Delegate.h < prev    next >
Encoding:
Text File  |  1995-04-12  |  691 b   |  27 lines

  1. /***************************************************************
  2.   CATEGORY:            MiscDragView (Delegate)
  3.  
  4.       These are methods for use with delegation. The _methods 
  5.     are the ones that actually dispatch the message if there
  6.     is a delegate.
  7.      
  8.  * Copyright (C) 1995 Robert Todd Thomas
  9.  * Use is governed by the MiscKit license
  10.  ***************************************************************/
  11.  
  12. #import <appkit/appkit.h>
  13. #import <misckit/MiscDragView.h>
  14.  
  15. @interface MiscDragView (Delegate)
  16.  
  17. - delegate;
  18. - setDelegate: aDelegate;
  19.  
  20. - _sourceDragInitiated: sender;
  21. - _sourceDragFinished: (BOOL)successful;
  22. - _destinationDragInitiated: sender;
  23. - _destinationDragFinished: (BOOL)successful;
  24.  
  25. @end
  26.  
  27.